28dc4e178e15fc33859189cbaead7c12b1ee2d46,src/test/java/com/amazonaws/services/dynamodbv2/datamodeling/TransformerHolisticTests.java,TransformerHolisticTests,setUp,#,240
Before Change
client.createTable(new CreateTableRequest().withTableName("HashKeyOnly")
.withAttributeDefinitions(attrDef)
.withKeySchema(keySchema));
attrDef = new ArrayList<AttributeDefinition>();
attrDef.add(new AttributeDefinition().withAttributeName("hashKey").withAttributeType(ScalarAttributeType.B));
After Change
client.createTable(new CreateTableRequest().withTableName("HashKeyOnly")
.withAttributeDefinitions(attrDef)
.withKeySchema(keySchema)
.withProvisionedThroughput(new ProvisionedThroughput(100L, 100L)));
attrDef = new ArrayList<AttributeDefinition>();
attrDef.add(new AttributeDefinition().withAttributeName("hashKey").withAttributeType(ScalarAttributeType.B));